home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / pascal / totsrc11.zip / TOTOVL.PAS < prev    next >
Pascal/Delphi Source File  |  1993-05-04  |  546b  |  23 lines

  1. {               Copyright 1991 TechnoJock Software, Inc.               }
  2. {                          All Rights Reserved                         }
  3. {                         Restricted by License                        }
  4.  
  5. {                             Build # 1.10                             }
  6.  
  7. Unit totOVL;
  8.  
  9. {
  10.  Development History:
  11.  
  12. }
  13.  
  14. INTERFACE
  15. IMPLEMENTATION
  16. Uses Overlay;
  17. Const
  18.    OvrMaxSize = 75000;
  19. begin
  20.    OvrInit('program.OVR'); {Change overlay file name as appropriate}
  21.    OvrInitEMS;
  22.    OvrSetBuf(OvrMaxSize);
  23. end.